home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _D83831E47F2640D68E56623964AAA681 < prev    next >
Encoding:
Text File  |  2005-11-28  |  682 b   |  37 lines

  1. shader()
  2. {
  3.     cull("none")
  4.     sortweight("sprite")
  5.  
  6.     pass()
  7.     {
  8.         pixelshader("ProcessColor.psh")
  9.  
  10.         tmu()
  11.         {
  12.             texture()
  13.             {
  14.                 mapchannel(0)
  15.                 usermap(0)
  16.  
  17.                 addressfunc("clamp", "clamp", "clamp")
  18.                 filtering("no_filtering")
  19.             }
  20.         }
  21.         tmu()
  22.         {
  23.             texture()
  24.             {
  25.                 mapchannel(0)
  26.                 usermap(1)
  27.  
  28.                 addressfunc("clamp", "clamp", "clamp")
  29.                 filtering("no_filtering")
  30.             }
  31.         }
  32.         depthfunc("always", 0)
  33.         nofog()
  34.     }
  35. }
  36.  
  37.